This will be used to show box model borders.
<term>resize</term>
<listitem><para>Highlight resizing widgets</para></listitem>
</varlistentry>
-
+ <varlistentry>
+ <term>layout</term>
+ <listitem><para>Show layout borders</para></listitem>
+ </varlistentry>
</variablelist>
The special value <literal>all</literal> can be used to turn on all
debug options. The special value <literal>help</literal> can be used
GTK_DEBUG_INTERACTIVE = 1 << 17,
GTK_DEBUG_TOUCHSCREEN = 1 << 18,
GTK_DEBUG_ACTIONS = 1 << 19,
- GTK_DEBUG_RESIZE = 1 << 20
+ GTK_DEBUG_RESIZE = 1 << 20,
+ GTK_DEBUG_LAYOUT = 1 << 21
} GtkDebugFlag;
#ifdef G_ENABLE_DEBUG
{"interactive", GTK_DEBUG_INTERACTIVE},
{"touchscreen", GTK_DEBUG_TOUCHSCREEN},
{"actions", GTK_DEBUG_ACTIONS},
- {"resize", GTK_DEBUG_RESIZE}
+ {"resize", GTK_DEBUG_RESIZE},
+ {"layout", GTK_DEBUG_LAYOUT}
};
#endif /* G_ENABLE_DEBUG */